home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / test / paramdup.awk < prev    next >
Encoding:
AWK Script  |  1995-08-13  |  104 b   |  9 lines

  1. BEGIN { foo(0, 1, 2) }
  2.  
  3. function foo(a, b, c, b, a)
  4. {
  5.     print "a =", a
  6.     print "b =", b
  7.     print "c =", c
  8. }
  9.